home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / gengetopt-2.6.lha / gengetopt-2.6 / src / yywrap.c < prev   
C/C++ Source or Header  |  2000-07-01  |  273b  |  18 lines

  1. /*
  2. This file is licensed to you under the license specified in the included file
  3. `LICENSE'. Look there for further details.
  4. */
  5.  
  6.  
  7. /*
  8.   This function is called when found EOF.
  9.  */
  10. #include <stdio.h>
  11.  
  12. yywrap ()
  13. {
  14.   /* fprintf (stderr, "yywrap() called.\n"); */
  15.   return 1;
  16. }
  17.  
  18.